home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Developers / Think C dcmd 1.0 ƒ / Think_dcmd.h < prev    next >
Text File  |  1994-06-12  |  1KB  |  40 lines

  1. #ifndef    __think_dcmd__
  2. #define __think_dcmd__
  3.  
  4. #include <Types.h>
  5.  
  6. /*
  7.  *    The #include <dcmd.h> MUST occur after these definitions
  8.  */
  9.  
  10. #define        CommandEntry            COMMANDENTRY
  11.  
  12. #define        dcmdDrawLine            DCMDDRAWLINE
  13. #define        dcmdDrawString            DCMDDRAWSTRING
  14. #define        dcmdDrawText            DCMDDRAWTEXT
  15. #define        dcmdScroll                DCMDSCROLL
  16. #define        dcmdDrawPrompt            DCMDDRAWPROMPT
  17. #define        dcmdGetPosition            DCMDGETPOSITION
  18. #define        dcmdSetPosition            DCMDSETPOSITION
  19. #define        dcmdGetNextChar            DCMDGETNEXTCHAR
  20. #define        dcmdPeekAtNextChar        DCMDPEEKATNEXTCHAR
  21. #define        dcmdGetNextParameter    DCMDGETNEXTPARAMETER    
  22. #define        dcmdGetNextExpression    DCMDGETNEXTEXPRESSION
  23. #define        dcmdGetBreakMessage        DCMDGETBREAKMESSAGE
  24. #define        dcmdGetNameAndOffset    DCMDGETNAMEANDOFFSET
  25. #define        dcmdGetTrapName            DCMDGETTRAPNAME
  26. #define        dcmdGetMacroName        DCMDGETMACRONAME
  27. #define        dcmdSwapWorlds            DCMDSWAPWORLDS
  28. #define        dcmdSwapScreens            DCMDSWAPSCREENS
  29. #define        dcmdForAllHeapBlocks    DCMDFORALLHEAPBLOCKS
  30.  
  31.  
  32. #include <dcmd.h>
  33.  
  34.  
  35. /*    Prototype for CommandEntry    */
  36.  
  37. pascal void CommandEntry( dcmdBlock* paramPtr );
  38.  
  39. #endif
  40.